home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_09 / 9n09098a < prev    next >
Encoding:
Text File  |  1995-11-01  |  75 b   |  9 lines

  1. int &f()
  2.     {
  3.     int i;
  4.     ...
  5.     return i;
  6.     }
  7. ...
  8. f() = 2;
  9.